home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cgimail.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  73 lines

  1. #
  2. # This script was written by John Lampe...j_lampe@bellsouth.net 
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11721);
  10.  script_bugtraq_id(1623);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CVE-2000-0726");
  13.  
  14.  
  15.  name["english"] = "CgiMail.exe vulnerability";
  16.  name["francais"] = "CgiMail.exe vulnerability";
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "
  20. The CGI 'CgiMail.exe' exists on this webserver.  
  21. Some versions of this file are vulnerable to remote exploit.
  22.  
  23. An attacker can use this flaw to gain access to confidential
  24. data or further escalate their privileges.
  25.  
  26. Solution : Remove this file from your cgi-bin or scripts folder.
  27.  
  28. Risk factor : High";
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks for the cgimail.exe file";
  34.  
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO); 
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2003 John Lampe",
  41.         francais:"Ce script est Copyright (C) 2003 John Lampe");
  42.  family["english"] = "CGI abuses";
  43.  family["francais"] = "Abus de CGI";
  44.  script_family(english:family["english"], francais:family["francais"]);
  45.  script_dependencie("find_service.nes", "no404.nasl");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50. #
  51. # The script code starts here
  52. #
  53.  
  54. include("http_func.inc");
  55. include("http_keepalive.inc");
  56.  
  57. port = get_http_port(default:80);
  58.  
  59. if(!get_port_state(port))exit(0);
  60.  
  61. flag = 0;
  62. directory = "";
  63.  
  64. foreach dir (cgi_dirs()) {
  65.    if(is_cgi_installed_ka(item:string(dir, "/cgimail.exe"), port:port)) {
  66.       flag = 1;
  67.       directory = dir;
  68.       break;
  69.    } 
  70. }
  71.  
  72. if (flag) security_hole(port);
  73.